home *** CD-ROM | disk | FTP | other *** search
/ Windows News 2005 November / WNnov2005.iso / Windows / Equipement / hMailServer / hMailServer-4.1-Build-136.exe / {app} / PHPWebAdmin / settings_smtp_routes_addresses_edit.php < prev    next >
PHP Script  |  2005-01-06  |  2KB  |  68 lines

  1. <?php
  2. /*
  3. ** $Id: settings_smtp_routes_addresses_edit.php,v 1.3 2005/01/05 22:22:50 hmailserver Exp $
  4. **
  5. **    hMailServer - Web interface
  6. **
  7. **    File formatted using TAB size 4
  8. **
  9. **    Get hMailserver at http://www.hmailserver.com
  10. **
  11. **    Author: Steen Rab°l <srabol@mail.tele.dk>
  12. **    Copyright (c) 2004, Steen Rab°l <srabol@mail.tele.dk>
  13. **
  14. **  This program is free software; you can redistribute it and/or modify
  15. **  it under the terms of the GNU General Public License as published by
  16. **  the Free Software Foundation; either version 2 of the License, or
  17. **  (at your option) any later version.
  18. **
  19. **  You may not change or alter any portion of this comment or credits
  20. **  of supporting developers from this source code or any supporting
  21. **  source code which is considered copyrighted (c) material of the
  22. **  original comment or credit authors.
  23. **
  24. **  This program is distributed in the hope that it will be useful,
  25. **  but WITHOUT ANY WARRANTY; without even the implied warranty of
  26. **  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  27. **  GNU General Public License for more details.
  28. **
  29. **  You should have received a copy of the GNU General Public License
  30. **  along with this program; if not, write to the Free Software
  31. **  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  32. **
  33. */
  34. if (hmailGetAdminLevel() != 2)
  35.     hmailHackingAttemp();
  36.  
  37. $obSettings    = $obBaseApp->Settings();
  38. $obRoutes    = $obSettings->Routes();
  39. $function    = hmailGetVar("function","");
  40. $RouteID    = hmailGetVar("RouteID",0);
  41. $AddressID    = hmailGetVar("AddressID",0);
  42. $obRoutes->Refresh();
  43. $obRoute     = $obRoutes->ItemByDBID($RouteID);
  44. $obAddresses = $obRoute->Addresses();
  45.  
  46. // Addresses collection is missing the ItemByDBID(), workaround
  47. $Count = $obAddresses->Count();
  48. for ($i = 0; $i < $Count; $i++)
  49. {
  50.     $obAddress = $obAddresses->Item($i);
  51.     if($obAddress->ID == $AddressID)
  52.         break;
  53. }
  54.  
  55. if($function == "doedit")
  56. {
  57.     $obAddress->Address    = hmailGetVar("Address");
  58.     $obAddress->RouteID    = $RouteID;
  59.     $obAddress->Save();
  60.     header("refresh:0; url=index.php");
  61.     exit();
  62. }
  63.  
  64. $hmailSmarty->assign("route", $obRoute);
  65. $hmailSmarty->assign("address", $obAddress);
  66. $hmailSmarty->assign("settings", $obSettings);
  67. $hmailSmarty->assign("pagecontent", $hmailSmarty->fetch('settings_smtp_routes_addresses_edit.tpl'));
  68. ?>